:root { --main-color: #f56212; --h1-size: 2.4rem; --h2-size: 1.8rem; --h3-size: 1.5rem; --main-width: 1200px; --bg-color: #080f2d; --text-color: #f0f0f0; --accent-color: #f56212; --light-accent: #ffa02d; --footer-bg: #050a1f; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: var(--text-color); background-color: var(--bg-color); }
.hero-section { padding: 0px; position: relative; overflow: hidden; width: 100%; background: #080f2d; }
.hero-bg-container {; }
.hero-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 40px; position: relative; z-index: 2; flex-direction: row; height: 100%; min-height: 200px; }
.hero-content { flex: 1; margin: 0px 0 0px 0; }
.hero-title { font-size: var(--h1-size); line-height: 1.1; margin-bottom: 20px; position: relative; display: inline-block; color: #f56212; font-weight: 700; }
.hero-subtitle { font-size: 1.2rem; margin-bottom: 30px; position: relative; display: block; margin-top: 20px; color: #ffffff; }
.hero-subtitle span { content: ''; position: absolute; bottom: -8px; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, #f56314, transparent); }
.hero-btn { background: linear-gradient(135deg, rgb(245, 99, 20) 0%, rgb(255, 160, 45) 100%); color: rgb(255, 255, 255); border: medium; padding: 20px 35px; border-radius: 100px; font-size: 1.3rem; cursor: pointer; font-weight: bold; box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 15px; transition: 0.3s; margin-top: 20px; position: relative; overflow: hidden; z-index: 2; }
.hero-btn-shine { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent); }
.hero-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.hero-btn:hover .hero-btn-shine { animation: hero-shine 1s; }
@keyframes hero-shine { 100% { left: 100%; }
; }
.hero-bonus2 { flex: 0 0 950px; display: flex; align-items: center; justify-content: center; height: 405px; position: relative; overflow: hidden; border-left: medium; border-right: medium; }
.hero-image-container { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 0px; box-sizing: border-box; }
.hero-uploaded-image { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; border: medium; box-sizing: border-box; filter: none; border-radius: 0px; }
.content-container { max-width: var(--main-width); margin: 60px auto; padding: 0 20px; }
.content-container h1, .content-container h2, .content-container h3 { margin-top: 20px; margin-bottom: 0.7em; font-weight: 700; }
.content-container h1 { font-size: var(--h1-size); color: var(--light-accent); }
.content-container h2 { font-size: var(--h2-size); color: #f56212; }
.content-container h3 { font-size: var(--h3-size); color: #4dabf7; }
.content-container p { margin-bottom: 1.2em; font-size: 1.1rem; }
.content-container a { color: inherit; text-decoration: underline; }
.content-container ul, .content-container ol { margin-left: 2em; margin-bottom: 1.5em; }
.content-container li { margin-bottom: 0.5em; }
.content-container img { max-width: 100%; height: auto; display: block; margin: 0 auto; border-radius: 8px; }
.content-container table { width: 100%; border-collapse: collapse; margin: 2em 0; background: rgba(255,255,255,0.05); border-radius: 8px; overflow: hidden; }
.content-container th, .content-container td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); }
.content-container th { background-color: rgba(245, 98, 18, 0.2); color: var(--light-accent); font-weight: bold; }
.content-container tr:hover { background-color: rgba(255,255,255,0.03); }
.feed-block { margin: 4em 0; }
.feed-title { font-size: var(--h2-size); color: var(--light-accent); margin-bottom: 1.5em; text-align: center; }
.feed-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.feed-item { background: rgba(255,255,255,0.05); border-radius: 12px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.feed-item:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
.feed-item-image { width: 100%; height: 200px; object-fit: cover; border-radius: 12px 12px 0 0; }
.feed-item-content { padding: 20px; }
.feed-item-title { font-size: 1.3rem; margin-bottom: 10px; }
.feed-item-title a { color: #fff; text-decoration: none; }
.feed-item-title a:hover { color: var(--light-accent); }
.feed-item-description { color: #ccc; font-size: 0.95rem; }
.comments-block { margin: 4em 0; }
.comments-title { font-size: var(--h2-size); color: #ff6b6b; margin-bottom: 1.5em; text-align: center; }
.comment-list { display: flex; flex-direction: column; gap: 25px; }
.comment-item { background: linear-gradient(135deg, rgba(255,107,107,0.1) 0%, rgba(255,107,107,0.05) 100%); border-left: 6px solid #ff6b6b; padding: 25px; border-radius: 0 12px 12px 0; position: relative; }
.comment-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; flex-wrap: wrap; }
.comment-name { font-weight: bold; color: #ffd8d8; font-size: 1.2rem; }
.comment-date { color: #ff9999; font-size: 0.9rem; }
.comment-text { color: #f0f0f0; line-height: 1.5; }
.faq-block { margin: 4em 0; }
.faq-title { font-size: var(--h2-size); color: #69db7c; margin-bottom: 1.5em; text-align: center; }
.faq-list { display: flex; flex-direction: column; gap: 20px; }
.faq-item { background: rgba(105, 219, 124, 0.05); border-radius: 12px; padding: 25px; border: 2px dashed #69db7c; }
.faq-question { font-weight: bold; color: #69db7c; font-size: 1.2rem; margin-bottom: 15px; display: flex; align-items: center; }
.faq-question::before { content: 'Q:'; margin-right: 10px; font-weight: 900; }
.faq-answer { color: #d3f9d8; padding-left: 30px; position: relative; }
.faq-answer::before { content: 'A:'; position: absolute; left: 0; font-weight: 900; color: #69db7c; }
.random-link-block { margin: 3em 0; padding: 20px; background: rgba(155, 135, 245, 0.1); border-left: 8px solid #9b87f5; border-radius: 0 8px 8px 0; }
.random-link-text { font-size: 1.3rem; color: #d0c5ff; }
.random-link-text a { color: #fff; text-decoration: underline; font-weight: bold; }
.cta-button-block { margin: 4em 0; text-align: center; }
.cta-button { display: inline-block; background: linear-gradient(135deg, #f56212 0%, #ff8787 100%); color: #fff; padding: 25px 50px; border-radius: 100px; font-size: 1.8rem; font-weight: bold; text-decoration: none; box-shadow: 0 10px 30px rgba(255,107,107,0.4); transition: all 0.4s; position: relative; overflow: hidden; animation: pulse 2s infinite; }
.cta-button::after { content: ''; position: absolute; top: -50%; left: -60%; width: 40%; height: 200%; background: rgba(255,255,255,0.2); transform: rotate(30deg); transition: left 0.6s; }
.cta-button:hover::after { left: 120%; }
.cta-button:hover { transform: scale(1.05); box-shadow: 0 15px 40px rgba(255,107,107,0.6); }
@keyframes pulse { 0% { box-shadow: 0 10px 30px rgba(255,107,107,0.4); }
50% { box-shadow: 0 10px 40px rgba(255,107,107,0.7); }
100% { box-shadow: 0 10px 30px rgba(255,107,107,0.4); }
; }
footer { background-color: var(--footer-bg); padding: 40px 20px; margin-top: 60px; }
.footer-menu { max-width: var(--main-width); margin: 0 auto 30px; display: flex; justify-content: center; flex-wrap: wrap; gap: 25px; }
.footer-menu a { color: #ccc; text-decoration: none; font-size: 1.1rem; transition: color 0.3s; }
.footer-menu a:hover { color: var(--light-accent); }
.copyright { max-width: var(--main-width); margin: 0 auto; text-align: center; color: #888; font-size: 0.9rem; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.floating-panel-spacer { height: 80px; background-color: var(--footer-bg); }
.floating-panel { position: fixed; bottom: 10px; left: 10px; right: 10px; height: 80px; background: linear-gradient(90deg, #f56212, #ffa02d); border-radius: 15px; display: flex; align-items: center; justify-content: space-between; padding: 0 30px; z-index: 1000; box-shadow: 0 5px 25px rgba(0,0,0,0.5); transform: translateY(100px); transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.floating-panel.visible { transform: translateY(0); }
.floating-panel-logo { font-size: 1.6rem; font-weight: bold; color: #fff; text-decoration: none; }
.floating-panel-btn { background: #080f2d; color: #fff; border: none; padding: 15px 30px; border-radius: 50px; font-size: 1.2rem; font-weight: bold; cursor: pointer; text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: all 0.3s; }
.floating-panel-btn:hover { background: #fff; color: #080f2d; transform: translateY(-3px); }
.template_invisible { display: none; }
@media (max-width: 1600px) { .hero-bonus2 { flex: 0 0 800px; height: 340px; }
.hero-container { gap: 30px; }
.hero-title { font-size: 2.2rem; }
.hero-subtitle { font-size: 1.1rem; }
.hero-btn { padding: 18px 32px; font-size: 1.2rem; }
; }
@media (max-width: 1400px) { .hero-bonus2 { flex: 0 0 700px; height: 300px; }
.hero-container { gap: 25px; }
.hero-title { font-size: 2rem; }
.hero-subtitle { font-size: 1.05rem; }
.hero-btn { padding: 17px 30px; font-size: 1.15rem; }
; }
@media (max-width: 1200px) { .hero-bonus2 { flex: 0 0 600px; height: 255px; }
.hero-container { gap: 20px; }
.hero-title { font-size: 1.8rem; }
.hero-subtitle { font-size: 1rem; }
.hero-btn { padding: 16px 28px; font-size: 1.1rem; }
; }
@media (max-width: 1100px) { .hero-bonus2 { flex: 0 0 600px; height: 300px; }
; }
@media (max-width: 768px) { .hero-container { flex-direction: column; padding: 40px 20px; gap: 30px; min-height: auto; }
.hero-content { text-align: center; }
.hero-bonus2 { flex: 0 0 auto; width: 100%; height: 250px; order: 2; }
.hero-title { font-size: 2rem; }
.hero-subtitle { font-size: 1.1rem; }
.hero-btn { padding: 18px 30px; font-size: 1.1rem; }
.footer-menu { flex-direction: column; align-items: flex-start; gap: 15px; }
.floating-panel { justify-content: center; padding: 0 20px; }
.floating-panel-logo { display: none; }
.feed-grid { grid-template-columns: 1fr; }
.cta-button { padding: 20px 35px; font-size: 1.5rem; }
; }
:root { --menu-color: #000000; --menu-text: #FFFFFF; --hover-color: var(--main-color); --hover-text: #000000; }
[data-theme="light"] { --menu-color: #FFFFFF; --menu-text: #000000; --hover-color: var(--main-color); --hover-text: #FFFFFF; }
a { color: inherit; text-decoration: underline; }
.container { max-width: var(--main-width); margin: 0 auto; padding: 0 20px; }
header { padding: 0; background-color: var(--menu-color); position: relative; }
.desktop-menu { display: flex; list-style: none; margin: 0; padding: 0; }
.desktop-menu > li { position: relative; margin: 0px; }
.desktop-menu > li > a { color: var(--menu-text); text-decoration: none; font-size: 1rem; padding: 10px 15px; display: flex; align-items: center; transition: color 0.1s; }
.desktop-menu > li > a:hover { color: var(--hover-color); }
.desktop-menu > li.has-submenu > a::after { content: '▼'; font-size: 0.5rem; margin-top: 2px; margin-left: 5px; }
.submenu { position: absolute; top: 100%; left: 0; background-color: var(--menu-color); min-width: 200px; list-style: none; opacity: 0; visibility: hidden; transition: all 0.1s; z-index: 1000; border-radius: 5px; overflow: hidden; }
.desktop-menu > li:hover .submenu { opacity: 1; visibility: visible; }
.submenu { margin: 0px; padding: 0px !important; }
.submenu li { margin: 0px; padding: 0px !important; }
.submenu li a { color: var(--menu-text); text-decoration: none; display: block; width: 100% !important; padding: 12px 15px; margin: 0px !important; transition: background 0.1s; }
.submenu li a:hover { color: var(--hover-text); background-color: var(--hover-color); }
.burger-menu { order: 3; display: none; background: none; border: none; color: #ffffff; font-size: 1.6rem; cursor: pointer; }
.mobile-menu-close { position: absolute; top: 15px; right: 15px; background: none; border: none; color: white; font-size: 24px; cursor: pointer; display: none; }
.header-container { display: flex; flex-wrap: wrap; align-items: center; }
nav { order: 2; display: block; width: auto; margin-left: auto; margin-top: 12px; margin-bottom: 12px; }
.logo { order: 1; font-size: 1.8rem; font-weight: bold; color: var(--hover-color); text-decoration: none; margin-right: auto; }
.logo img { margin: 0px; }
.header-right { order: 3; display: inline-block; margin-left: 20px; padding: 12px 0; }
.language-switcher {; }
.language-switcher:empty { display: none; }
.language-switcher { display: flex; gap: 15px; }
.language-switcher a { color: #fff; text-decoration: none; font-size: 14px; }
@media (max-width: 768px) { .logo { order: 1; font-size: 1.4rem; }
.burger-menu { display: block; margin-left: auto; }
.header-right { display: block; width: 100%; text-align: center; }
.language-switcher { display: inline-flex; margin: 10px auto 0px auto; }
; }
@media (max-width: 768px) { nav { position: fixed; top: 0; left: 0; width: 80%; height: 100vh; background: #1a1a1a; z-index: 1000; transform: translateX(-100%); transition: transform 0.3s ease; padding: 60px 20px 20px; box-sizing: border-box; }
nav.active { transform: translateX(0); }
.desktop-menu { flex-direction: column; margin: 0px; }
.has-submenu { position: relative; width: 100%; font-size: 0.9rem; margin: 0px; padding-right: 30px; }
.has-submenu > a { display: flex; }
.desktop-menu > li.has-submenu > a::after { position: absolute; right: 0px; top: 20px; transform: translateY(-50%); font-size: 0.8rem; margin-left: 0; transition: transform 0.3s; padding: 10px; }
.desktop-menu > li.has-submenu > a.submenu-active::after { padding: 10px; transform: translateY(-50%) rotate(180deg); }
.submenu { display: none; position: static; opacity: 1; visibility: visible; background-color: transparent; padding-left: 15px; }
.submenu.active { display: block; margin-left: 20px; margin-bottom: 0px; }
.submenu li a { color: var(--menu-text); background-color: transparent; text-decoration: none; display: block; padding: 5px 0px; transition: background 0.1s; }
.submenu li a:hover { color: var(--hover-color); background-color: transparent; }
.nav-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999; }
.nav-overlay.active { display: block; }
.mobile-menu-close { display: block; }
; }
@media (max-width: 1919px) { :root { --main-width: 1200px; }
[style*="max-width: 1200px"] { max-width: 1200px !important; }
; }
@media (min-width: 1530px) and (max-width: 1920px) { :root { --main-width: 90%; }
[style*="max-width: 1200px"], .hero-container, .hero-section .hero-container, .hero-section .hero-container[style*="max-width: 1200px"], .hero-container[style*="max-width: 1200px"], [style*="max-width: 1200px"].hero-container { max-width: 90% !important; width: 90% !important; }
; }
@media (min-width: 1921px) { :root { --main-width: 80%; }
[style*="max-width: 1200px"], .hero-container, .hero-section .hero-container, .hero-section .hero-container[style*="max-width: 1200px"], .hero-container[style*="max-width: 1200px"], [style*="max-width: 1200px"].hero-container { max-width: 80% !important; width: 80% !important; }
; }
.main-content { margin-top: 20px; }
.sidebar { flex: 0 0 25%; margin-top: 20px; }
.sidebar a { text-decoration: none; }
.sidebar .feed-item { margin-bottom: 50px; }
.content-container > p, .content-container > ul > li, .content-container > ol > li { font-size: 1.15rem; letter-spacing: 0.5px; }
.content-container > img, .content-container > p > img { max-width: 100%; border-radius: 10px; }
.main-content > p, .main-content > ul > li, .main-content > ol > li { font-size: 1.15rem; letter-spacing: 0.5px; }
.main-content > img, .main-content > p > img { max-width: 100%; border-radius: 10px; }
.content-container > table[border="1"] { border-spacing: 0 !important; border-collapse: collapse !important; border: 1px solid #C0C0C0 !important; }
.content-container > table[border="1"] th { border: none !important; border: 1px solid #C0C0C0 !important; padding: 12px !important; text-align: left !important; }
.content-container > table[border="1"] td { border: none !important; border: 1px solid #C0C0C0 !important; padding: 12px !important; text-align: left !important; }
.main-content > table[border="1"] { border-spacing: 0 !important; border-collapse: collapse !important; border: 1px solid #C0C0C0 !important; }
.main-content > table[border="1"] th { border: none !important; border: 1px solid #C0C0C0 !important; padding: 12px !important; text-align: left !important; }
.main-content > table[border="1"] td { border: none !important; border: 1px solid #C0C0C0 !important; padding: 12px !important; text-align: left !important; }
main > p, main > ul > li, main > ol > li { font-size: 1.15rem; letter-spacing: 0.5px; }
main > img, main > p > img { max-width: 100%; border-radius: 10px; }
main > table[border="1"] { border-spacing: 0 !important; border-collapse: collapse !important; border: 1px solid #C0C0C0 !important; }
main > table[border="1"] th { border: none !important; border: 1px solid #C0C0C0 !important; padding: 12px !important; text-align: left !important; }
main > table[border="1"] td { border: none !important; border: 1px solid #C0C0C0 !important; padding: 12px !important; text-align: left !important; }
.cta-button { text-decoration: none !important; }
.toc-section { padding-top: 0px !important; }